home *** CD-ROM | disk | FTP | other *** search
- /************************************************************
- * 共通一般ライブラリー OKOME System 2 *
- ************************************************************/
-
- #include <string.h>
- #include <EGB.H>
- #include <normlib.h>
-
- extern char work[];
-
- void print(int x, int y, char *p)
- {
- char pa[512];
- EGB_textZoom( work, 0, 8, 16);
- EGB_textZoom( work, 1, 16, 16);
- WORD(pa ) = x;
- WORD(pa + 2) = y;
- WORD(pa + 4) = strlen(p);
- strcpy( &(pa[6]), p );
- EGB_sjisString( work, pa );
- }